Release 10.1A: OpenEdge Development:
Progress 4GL Reference


LT or < operator

Returns a TRUE value if the first of two expressions is less than the second.

Syntax

expression { LT | < } expression 

expression

A constant, field name, variable name, or expression. The expressions on either side of the LT or < = must be of the same data type, although one can be an integer and the other can be a decimal.

Example

This procedure displays information for those item records whose on-hand value is less than the allocated value:

r-lt.p
FOR EACH item WHERE on-hand < allocated:
  DISPLAY item.item-num item-name on-hand allocated.
END. 

Notes


Copyright © 2005 Progress Software Corporation
www.progress.com
Voice: (781) 280-4000
Fax: (781) 280-4095